home *** CD-ROM | disk | FTP | other *** search
/ Cine Live 72 / Cine Live 72.iso / pc / Data / Interface / quitter.k < prev    next >
Encoding:
Text File  |  2001-01-08  |  755 b   |  39 lines

  1. module oRoot1 is cBox
  2. with 
  3.     Flags is $00000152; 
  4.     release Editor:
  5.         IOWindow is {$00000131,$0000002A,$000001A6,$0000039E,$FFFFFFED,$00000000,$00000000,$00000000};
  6.         LayoutWindow is {$0000019E,$0000002F,$0000028F,$000001EF,$00000000,$00000000,$00000064,$00000000};
  7.     end;
  8.     Name is "Root"; 
  9.     Enabled is false; 
  10.     
  11.     Width is 800; Height is 600; 
  12.     
  13.     
  14.     Elements is [
  15.         oOURS2
  16.     ];
  17. end;
  18.  
  19. object oOURS2 is cImage
  20. with 
  21.     Flags is $00000054; 
  22.     Name is "OURS"; 
  23.     Cursor is oEmptyCursor; 
  24.     AdjustX is AlignToCenter; AdjustY is AlignToMiddle; 
  25.     AdjustWidth is GetDataWidth; AdjustHeight is GetDataHeight; 
  26.     
  27.     URL is "../Images/ours.JPG"; 
  28.     
  29.     
  30.     Events is [
  31.         cMouseDownEvent
  32.         with Flags is $00000004; 
  33.             Commands is [
  34.                 cQuitCommand
  35.                 with end
  36.             ];
  37.         end
  38.     ];
  39. end;